home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -serious- / programming / other / tandem / teaching / 9.asm < prev   
Assembly Source File  |  1999-09-06  |  291b  |  10 lines

  1. * 9.asm  Jump about             version 0.00    1.9.97
  2.  
  3.  move.l #20,D0 ;long move to d0, the value 20
  4.  cmp.l #20,D0  ;long compare to d0, the value 20
  5.  beq Aeq20     ;go if equal  (BEQ stands for "branch if equal")
  6. Ane20:
  7.  rts           ;else, return (NE)
  8. Aeq20:
  9.  rts           ;return (EQ)
  10.